home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
compar1r
/
frmabout.frm
(
.txt
)
< prev
Wrap
Visual Basic Form
|
1999-07-01
|
13KB
|
474 lines
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 1 'Fixed Single
Caption = "About the Ascii Table"
ClientHeight = 2595
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2595
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.Timer Timer1
Left = 960
Top = 1320
End
Begin VB.Label Label13
Alignment = 2 'Center
Caption = "v1.0"
Height = 255
Left = 120
TabIndex = 12
Top = 720
Width = 4455
End
Begin VB.Label Label12
Alignment = 2 'Center
Caption = "Label12"
Height = 1215
Left = 120
TabIndex = 11
Top = 1200
Width = 4455
End
Begin VB.Label Label11
Alignment = 2 'Center
Caption = "101"
Height = 255
Left = 4320
TabIndex = 9
Top = 240
Width = 255
End
Begin VB.Label Label10
Alignment = 2 'Center
Caption = "108"
Height = 255
Left = 3960
TabIndex = 8
Top = 240
Width = 255
End
Begin VB.Label Label9
Alignment = 2 'Center
Caption = " 98"
Height = 255
Left = 3600
TabIndex = 7
Top = 240
Width = 255
End
Begin VB.Label Label8
Alignment = 2 'Center
Caption = "97"
Height = 255
Left = 3240
TabIndex = 6
Top = 240
Width = 255
End
Begin VB.Label Label7
Alignment = 2 'Center
Caption = "84"
Height = 255
Left = 2880
TabIndex = 5
Top = 240
Width = 255
End
Begin VB.Label Label6
Alignment = 2 'Center
Caption = "105"
Height = 255
Left = 1560
TabIndex = 4
Top = 240
Width = 255
End
Begin VB.Label Label5
Alignment = 2 'Center
Caption = "105"
Height = 255
Left = 1200
TabIndex = 3
Top = 240
Width = 255
End
Begin VB.Label Label4
Alignment = 2 'Center
Caption = "99"
Height = 255
Left = 840
TabIndex = 2
Top = 240
Width = 255
End
Begin VB.Label Label3
Alignment = 2 'Center
Caption = "115"
Height = 255
Left = 480
TabIndex = 1
Top = 240
Width = 255
End
Begin VB.Label Label2
Alignment = 2 'Center
Caption = "65"
ForeColor = &H00000000&
Height = 255
Left = 120
TabIndex = 0
Top = 240
Width = 255
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "Ascii Table"
BeginProperty Font
Name = "Andale Mono"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 120
TabIndex = 10
ToolTipText = "Click Me!"
Top = 240
Width = 4455
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim temp As Byte
Private Sub Form_Click()
Unload Me
End Sub
Private Sub Form_Load()
Label12.Caption = _
"This program was made by" & Chr(13) & _
"Jason Khanlar - jasonkhanlar2@geocities.com" & Chr(13) & _
Chr(13) & Chr(13) & "Made on July 1st, 1999"
Timer1.Interval = 500
temp = 1
Label2.Visible = False
Label3.Visible = False
Label4.Visible = False
Label5.Visible = False
Label6.Visible = False
Label7.Visible = False
Label8.Visible = False
Label9.Visible = False
Label10.Visible = False
Label11.Visible = False
End Sub
Private Sub Label1_Click()
Me.Caption = "Can you find the hidden game?"
Label1.Visible = False
Label2.Visible = True
Label3.Visible = True
Label4.Visible = True
Label5.Visible = True
Label6.Visible = True
Label7.Visible = True
Label8.Visible = True
Label9.Visible = True
Label10.Visible = True
Label11.Visible = True
Timer1.Enabled = True
End Sub
Private Sub Label10_Click()
game
End Sub
Private Sub Label11_Click()
game
End Sub
Private Sub Label12_Click()
Unload Me
End Sub
Private Sub Label13_Click()
Unload Me
End Sub
Private Sub Label2_Click()
game
End Sub
Private Sub Label3_Click()
game
End Sub
Private Sub Label4_Click()
game
End Sub
Private Sub Label5_Click()
game
End Sub
Private Sub Label6_Click()
game
End Sub
Private Sub Label7_Click()
game
End Sub
Private Sub Label8_Click()
game
End Sub
Private Sub Label9_Click()
game
End Sub
Private Sub Timer1_Timer()
If temp = 1 Then
Label2.ForeColor = &HFF0000
temp = 2
ElseIf temp = 2 Then
Label2.ForeColor = &H0&
Label3.ForeColor = &HFF0000
temp = 3
ElseIf temp = 3 Then
Label3.ForeColor = &H0&
Label4.ForeColor = &HFF0000
temp = 4
ElseIf temp = 4 Then
Label4.ForeColor = &H0&
Label5.ForeColor = &HFF0000
temp = 5
ElseIf temp = 5 Then
Label5.ForeColor = &H0&
Label6.ForeColor = &HFF0000
temp = 6
ElseIf temp = 6 Then
Label6.ForeColor = &H0&
Label7.ForeColor = &HFF0000
temp = 7
ElseIf temp = 7 Then
Label7.ForeColor = &H0&
Label8.ForeColor = &HFF0000
temp = 8
ElseIf temp = 8 Then
Label8.ForeColor = &H0&
Label9.ForeColor = &HFF0000
temp = 9
ElseIf temp = 9 Then
Label9.ForeColor = &H0&
Label10.ForeColor = &HFF0000
temp = 10
ElseIf temp = 10 Then
Label10.ForeColor = &H0&
Label11.ForeColor = &HFF0000
temp = 11
ElseIf temp = 11 Then
Label11.ForeColor = &H0&
Label2.Caption = "A"
temp = 12
ElseIf temp = 12 Then
Label2.Caption = 65
Label3.Caption = "s"
temp = 13
ElseIf temp = 13 Then
Label3.Caption = 115
Label4.Caption = "c"
temp = 14
ElseIf temp = 14 Then
Label4.Caption = 99
Label5.Caption = "i"
temp = 15
ElseIf temp = 15 Then
Label5.Caption = 105
Label6.Caption = "i"
temp = 16
ElseIf temp = 16 Then
Label6.Caption = 105
Label7.Caption = "T"
temp = 17
ElseIf temp = 17 Then
Label7.Caption = 84
Label8.Caption = "a"
temp = 18
ElseIf temp = 18 Then
Label8.Caption = 97
Label9.Caption = "b"
temp = 19
ElseIf temp = 19 Then
Label9.Caption = 98
Label10.Caption = "l"
temp = 20
ElseIf temp = 20 Then
Label10.Caption = 108
Label11.Caption = "e"
temp = 21
ElseIf temp = 21 Then
Label11.Caption = 101
temp = 22
ElseIf temp = 22 Then
Label2.Caption = "A"
Label3.Caption = "s"
Label4.Caption =